home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CTOOLS10.ARJ / SSORT.H < prev    next >
C/C++ Source or Header  |  1991-10-28  |  1KB  |  47 lines

  1. /****************************************************************************
  2. *
  3. *                    Copyright (C) 1991 Kendall Bennett.
  4. *                            All rights reserved.
  5. *
  6. * Filename:        $RCSfile: ssort.h $
  7. * Version:        $Revision: 1.3 $
  8. *
  9. * Language:        ANSI C
  10. * Environment:    any
  11. *
  12. * Description:    Header file for Shell sort module
  13. *
  14. * $Id: ssort.h 1.3 91/09/27 03:11:14 kjb Exp $
  15. *
  16. * Revision History:
  17. * -----------------
  18. *
  19. * $Log:    ssort.h $
  20. * Revision 1.3  91/09/27  03:11:14  kjb
  21. * Added compatibility with C++.
  22. * Revision 1.2  91/09/26  10:07:56  kjb
  23. * Took out extern references
  24. * Revision 1.1  91/08/16  13:19:55  ROOT_DOS
  25. * Initial revision
  26. ****************************************************************************/
  27.  
  28. #ifndef    __SSORT_H
  29. #define    __SSORT_H
  30.  
  31. /*------------------------- Function Prototypes ---------------------------*/
  32.  
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36.  
  37. void ssort(char *base,int nel,int elsize,int (*cmp)() );
  38. void assort(void **base,int nel,int elsize,int (*cmp)() );
  39.  
  40. #ifdef __cplusplus
  41. }
  42. #endif
  43.  
  44. #endif